home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- rem ------------------------------------------------------------------
- rem
- rem PROBEDEV.BAT
- rem version for macromodel release 2.01
- rem Walt Jung 06/28/90, 12/03/90
- rem
- rem This batch file will create a custom version of "PROBE.DEV", via
- rem on diskette driver files and user keyboard input. To use, follow
- rem the screen prompts. Also, see driver information in SPICE\README2.
- rem
- rem ------------------------------------------------------------------
- if exist spice\probe.dev goto type
- :: beep if no probe.dev
- echo
- cls
- echo
- echo
- echo PROBE.DEV driver not found!
- echo Make or copy as shown in NEXT SCREENS.
- echo
- pause
- goto makdrv
- :type
- cls
- echo
- echo Now typing PROBE.DEV, note contents...
- echo
- type spice\probe.dev
- echo
- echo
- echo If this matches your hardware, you are now ready to run DEMOLTC.
- echo (if the above is ok just type ^C then "Y", to go back to DOS.)
- echo
- echo Otherwise, make up a driver as shown at the NEXT SCREEN.
- echo
- echo
- pause
- :makdrv
- cls
- echo
- echo Creating custom PROBE.DEV driver, please note directions...
- echo
- copy spice\drivers\DISPLAY probe.1 >nul:
- echo Now, enter in the type of display you have:
- echo (ie., "IBMEGA", "HERCULES", etc., type only info BETWEEN quotes).
- echo
- echo End the DISPLAY input by typing "^Z", "Enter"
- echo (type a control Z, then type Enter).
- echo
- copy con: probe.2 >nul:
- copy probe.1 + probe.2 probe.3 >nul:
- echo
- copy probe.3 + spice\drivers\hardcopy probe.4 >nul:
- echo Now, enter in the type of hardcopy port/device display you have:
- echo (ie., "LPT1:,HPLJ"; "PRN:,HERCULES", etc., type only the info BETWEEN quotes).
- echo
- echo End the HARDCOPY input by typing "^Z", "Enter"
- echo (type a control Z, then type Enter).
- echo
- copy con: probe.5 >nul:
- copy probe.4 + probe.5 spice\probe.dev >nul:
- echo
- del probe.? >nul:
- cls
- type spice\probe.dev
- echo
- echo
- echo Custom PROBE.DEV driver is all done!
- echo
- echo Note that some PROBE.DEV examples are contained in SPICE\DRIVERS\ ..
- echo you may alternately copy one of these for a custom driver. See
- echo SPICE\README2, for further driver information.
- echo
- :end
-